home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / exec / obtainquickvector.c < prev    next >
C/C++ Source or Header  |  1996-10-24  |  858b  |  48 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: obtainquickvector.c,v 1.3 1996/10/24 15:50:52 aros Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "exec_intern.h"
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12.     #include <clib/exec_protos.h>
  13.  
  14.     AROS_LH1(ULONG, ObtainQuickVector,
  15.  
  16. /*  SYNOPSIS */
  17.     AROS_LHA(APTR, interruptCode, A0),
  18.  
  19. /*  LOCATION */
  20.     struct ExecBase *, SysBase, 131, Exec)
  21.  
  22. /*  FUNCTION
  23.  
  24.     INPUTS
  25.  
  26.     RESULT
  27.  
  28.     NOTES
  29.  
  30.     EXAMPLE
  31.  
  32.     BUGS
  33.  
  34.     SEE ALSO
  35.  
  36.     INTERNALS
  37.  
  38.     HISTORY
  39.     29-10-95    digulla automatically created from
  40.                 exec_lib.fd and clib/exec_protos.h
  41.  
  42. *****************************************************************************/
  43. {
  44.     AROS_LIBFUNC_INIT
  45.     AROS_LIBBASE_EXT_DECL(struct ExecBase *,SysBase)
  46.     AROS_LIBFUNC_EXIT
  47. } /* ObtainQuickVector */
  48.